body {
    font-family: 'Futura Lt', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}



.banner-nuestra-gente-container {
    position: relative;
    text-align: left;
    margin: 10px;
}

.banner-ppal-nuestra-gente {
    width: 100%;
    height: auto;
}

/*  */

.content-image-text {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: 20px auto;
}

.content-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.content-image {
    width: 100%;
    /* Ajusta según tu preferencia */
    height: auto;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.content-text {
    flex: 1;
    text-align: left;
    padding-left: 40px;
}

.title-text {
    font-size: 24px;
    margin-bottom: 10px;
    color: #13acec;
}

p {
    font-size: 19px;
    line-height: 1.5;
}

/* Responsive: Cambiar la imagen abajo del texto en dispositivos móviles */
@media screen and (max-width: 768px) {
    .content-image-text {
        flex-direction: column;
        text-align: center;
    }

    .content-text {
        padding-left: 0;
        text-align: center;
    }

    .content-image-container {
        order: 2;
        /* La imagen pasará abajo */
    }

    .imagenes-container {
        flex-direction: column;
        align-items: center;
    }

    .imagenes-container img {
        width: 100% !important;
    }
}

.separador {
    display: flex;
    align-items: center;
    width: 100%;
}

.linea {
    flex-grow: 1;
    height: 1px;
    background-color: #13acec;
    margin-right: 10px;
    margin-left: 50px;
}

.logo {
    height: 50px;
    /* Ajusta según necesidad */
    margin-right: 50px;

}

/* Nueva sección después del separador */
.nueva-seccion {
    max-width: 80%;
    margin: 40px auto;
    text-align: center;
}

.nueva-seccion h2 {
    font-size: 24px;
    color: #13acec;
    margin-bottom: 15px;
}

.nueva-seccion p {
    font-size: 19px;
    line-height: 1.6;
    text-align: center;
}

.imagenes-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.imagenes-container img {
    width: 30%;
    height: auto;
    border-radius: 8px;
}

#header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.slider {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    /* Ajusta según tu diseño */
    position: relative;
}

.slides {
    display: flex;
    width: 500%;
    animation: slide 20s infinite;
}
.slides2 {
    display: flex;
    width: 500%;
    animation: slide2 15s infinite;
}

.slides img {
    width: 100%;
    object-fit: cover;
}

@keyframes slide {
    0%   { transform: translateX(0%); }
    20%  { transform: translateX(-100%); }
    40%  { transform: translateX(-200%); }
    60%  { transform: translateX(-300%); }
    80%  { transform: translateX(-400%); }
    100% { transform: translateX(0%); }
  }

@keyframes slide2 {
    0%   { transform: translateX(0%); }
    33%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
  }